* {
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Heming', Helvetica, Arial, sans-serif;
}
html {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
	background-size: cover;
	background: var(--background-color);
}
body {
  margin: 0px;
  padding: 0px;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: var(--background-color);
}

input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

textarea, input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  resize: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}

:root {
  --page-horizontal-padding: 200px;

  --box-padding: 20px;

  --main-color: rgba(231, 4, 99, 1);
  --background-color: rgba(14, 14, 14, 1);
  --text-color: rgba(244, 244, 244, 1);
  --text-color-two: rgba(217, 217, 217, 1);
  --text-color-three: rgba(191, 191, 191, 1);
}

.display-none {
  display: none !important;
}
p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

@font-face {
  font-family: 'Heming';
  src: url('/Cosmosphere\ _\ Expanding\ the\ Cosmoverse_files/heming-variable.ttf');
}

@media only screen and (min-width: 1900px) {
  :root {
    --page-horizontal-padding: calc((100vw - 1900px) / 2 + 200px);
  }
}
@media only screen and (max-width: 1700px) {
  :root {
    --page-horizontal-padding: 150px;
  }
}
@media only screen and (max-width: 1500px) {
  :root {
    --page-horizontal-padding: 120px;
  }
}
@media only screen and (max-width: 1200px) {
  :root {
    --page-horizontal-padding: 80px;
  }
}
@media only screen and (max-width: 1100px) {
  :root {
    --page-horizontal-padding: 60px;
  }
}

@media only screen and (max-width: 700px) {
  :root {
    --page-horizontal-padding: 50px;
  }
}
@media only screen and (max-width: 600px) {
  :root {
    --page-horizontal-padding: 30px;
  }
}
@media only screen and (max-width: 500px) {
  :root {
    --page-horizontal-padding: 20px;
  }
}
@media only screen and (max-width: 400px) {
  :root {
  }
}